home *** CD-ROM | disk | FTP | other *** search
- //***********************************************************************
- //
- // MouseCap.h
- //
- //***********************************************************************
-
- class CMyApp : public CWinApp
- {
- public:
- virtual BOOL InitInstance ();
- };
-
- class CMainWindow : public CFrameWnd
- {
- private:
- BOOL m_bTracking;
- BOOL m_bCaptureEnabled;
- CPoint m_ptFrom;
- CPoint m_ptTo;
-
- void InvertLine (CDC*, CPoint, CPoint);
-
- public:
- CMainWindow ();
-
- protected:
- afx_msg void OnLButtonDown (UINT, CPoint);
- afx_msg void OnLButtonUp (UINT, CPoint);
- afx_msg void OnMouseMove (UINT, CPoint);
- afx_msg void OnNcLButtonDown (UINT, CPoint);
-
- DECLARE_MESSAGE_MAP ()
- };
-